body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  background: #f0f0f0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: white;
  border-bottom: 2px solid #eee;
}

.logo span {
  font-weight: bold;
  margin-left: 10px;
  color: #333;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

nav a.active {
  border-bottom: 3px solid #999;
}

.hero {
  background: url('banniere.jpg') center/cover no-repeat;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero h1 {
  background: white;
  color: #c2185b;
  padding: 8px 16px;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.gallery {
  padding: 20px;
  background: white;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.grid img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.info-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 15px;
  background: #fff;
}

.comments, .events {
  width: 100%;
}

.comments h2, .events h2 {
  color: #c2185b;
}

ul {
  padding-left: 20px;
}

.bottom-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #e91e63;
  color: white;
  padding: 20px 15px;
}

.bottom-section > div {
  width: 100%;
  max-width: 100%;
}

.newsletter form {
  margin-top: 10px;
}

.newsletter input {
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 0px;
}

.newsletter button {
  padding: 10px 20px;
  margin-top: 10px;
  background: white;
  color: #e91e63;
  border: none;
  border-radius: 0px;
  cursor: pointer;
}

.socials h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.icons a {
  margin-right: 10px;
  font-size: 20px;
  color: white;
  text-decoration: none;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 15px;
}

.socials a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
  font-size: 20px;
}

@media screen and (max-width: 780px) {
  header {
    padding: 10px 40px;
  }

  nav ul {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }


  .info-section {
    flex-direction: row;
    justify-content: space-around;
    padding: 40px 20px;
  }

  .comments, .events {
    width: 45%;
  }

  .bottom-section {
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 40px 20px;
  }

  .bottom-section > div {
    flex: 1 1 300px;
    max-width: 500px;
  }

  .newsletter input {
    width: 70%;
    display: inline-block;
  }

  .newsletter button {
    margin-left: 10px;
    margin-top: 0;
    display: inline-block;
  }

  .socials h3 {
    font-size: 18px;
  }

  .icons a {
    font-size: 24px;
    margin-right: 15px;
  }
}